type net/http.http2StreamError
29 uses
net/http (current package)
h2_bundle.go#L1395: type http2StreamError struct {
h2_bundle.go#L1406: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
h2_bundle.go#L1407: return http2StreamError{StreamID: id, Code: code}
h2_bundle.go#L1410: func (e http2StreamError) Error() string {
h2_bundle.go#L2053: if _, ok := err.(http2StreamError); ok {
h2_bundle.go#L3266: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
h2_bundle.go#L3273: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
h2_bundle.go#L4970: if se, ok := wr.write.(http2StreamError); ok {
h2_bundle.go#L5241: _, isReset := wr.write.(http2StreamError)
h2_bundle.go#L5291: case http2StreamError, http2handlerPanicRST, http2writeWindowUpdate:
h2_bundle.go#L5379: case http2StreamError:
h2_bundle.go#L5499: func (sc *http2serverConn) resetStream(se http2StreamError) {
h2_bundle.go#L5542: case http2StreamError:
h2_bundle.go#L5729: if e, ok := err.(http2StreamError); ok {
h2_bundle.go#L5989: st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2StreamError{
h2_bundle.go#L7317: case http2StreamError:
h2_bundle.go#L8005: if se, ok := err.(http2StreamError); ok {
h2_bundle.go#L8979: if se, ok := err.(http2StreamError); ok {
h2_bundle.go#L9557: if se, ok := err.(http2StreamError); ok {
h2_bundle.go#L9618: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L9647: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L9975: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L9983: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L9992: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L10241: rl.endStreamError(cs, http2StreamError{
h2_bundle.go#L10868: func (se http2StreamError) writeFrame(ctx http2writeContext) error {
h2_bundle.go#L10872: func (se http2StreamError) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
h2_bundle.go#L11188: if se, ok := wr.write.(http2StreamError); ok {
h2_error.go#L13: func (e http2StreamError) As(target any) bool {